1
2
3
4 package joeq.ClassLib.sun14_win32.java.io;
5
6
7
8
9
10 public abstract class WinNTFileSystem extends Win32FileSystem {
11
12 public java.lang.String canonicalize(java.lang.String s) throws java.io.IOException { return super.canonicalize(s); }
13 public int getBooleanAttributes(java.io.File f) { return super.getBooleanAttributes(f); }
14 public boolean checkAccess(java.io.File f, boolean b) { return super.checkAccess(f, b); }
15 public long getLastModifiedTime(java.io.File f) { return super.getLastModifiedTime(f); }
16 public long getLength(java.io.File f) { return super.getLength(f); }
17 public boolean createFileExclusively(java.lang.String s) throws java.io.IOException { return super.createFileExclusively(s); }
18 public boolean delete(java.io.File f) { return super.delete(f); }
19 public synchronized boolean deleteOnExit(java.io.File f) { return super.deleteOnExit(f); }
20 public java.lang.String[] list(java.io.File f) { return super.list(f); }
21 public boolean createDirectory(java.io.File f) { return super.createDirectory(f); }
22 public boolean rename(java.io.File f1, java.io.File f2) { return super.rename(f1, f2); }
23 public boolean setLastModifiedTime(java.io.File f, long t) { return super.setLastModifiedTime(f, t); }
24 public boolean setReadOnly(java.io.File f) { return super.setReadOnly(f); }
25 String getDriveDirectory(int i) { return super.getDriveDirectory(i); }
26
27 private static void initIDs() {}
28 }